Full width Image on the home page
Using Jamroom
pch:
Thanks
douglas:
I don't believe there is a scroll down function for the Elastic skin.
So, any idea on how to get that arrow down botton scroll down when you click on it. I have manage to display the arrow icon but I can not get it work.I don't believe there is a scroll down function for the Elastic skin.
Thanks
You might try something like this, create an anchor tag where you want the scroll button to take you to.
<a name="sectionname" id="sectionname"></a>
<div>Section you want to scroll to.</div>
Then add an onclick handler to your button or icon to scroll to that section.
<a onclick="$('html, body').animate({ scrollTop: $('#sectionname').offset().top -10 }, 'slow');return false;">{jrCore_icon icon="down-arrow"}
</a>
You can change "sectionname" to whatever you like, just make sure it matches in the anchor tag and the onclick.
Hope this helps!